home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-494.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  98 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15537);
  11.  script_version ("$Revision: 1.2 $");
  12.  script_cve_id("CAN-2003-0455", "CAN-2004-0827");
  13.  
  14.  name["english"] = "RHSA-2004-494: ImageMagick";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated ImageMagick packages that fix various security vulnerabilities are
  21.   now available.
  22.  
  23.   ImageMagick(TM) is an image display and manipulation tool for the X Window
  24.   System.
  25.  
  26.   A heap overflow flaw was discovered in the ImageMagick image handler.
  27.   An attacker could create a carefully crafted BMP file in such a way that it
  28.   would cause ImageMagick to execute arbitrary code when processing the
  29.   image. The Common Vulnerabilities and Exposures project (cve.mitre.org)
  30.   has assigned the name CAN-2004-0827 to this issue.
  31.  
  32.   A temporary file handling bug has been found in ImageMagick\'s libmagick
  33.   library. A local user could overwrite or create files as a different user
  34.   if a program was linked with the vulnerable library. The Common
  35.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  36.   CAN-2003-0455 to this issue.
  37.  
  38.   Users of ImageMagick should upgrade to these updated packages, which
  39.   contain a backported patch, and is not vulnerable to this issue.
  40.  
  41.  
  42.  
  43.  
  44. Solution : http://rhn.redhat.com/errata/RHSA-2004-494.html
  45. Risk factor : High';
  46.  
  47.  script_description(english:desc["english"]);
  48.  
  49.  summary["english"] = "Check for the version of the ImageMagick packages";
  50.  script_summary(english:summary["english"]);
  51.  
  52.  script_category(ACT_GATHER_INFO);
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  55.  family["english"] = "Red Hat Local Security Checks";
  56.  script_family(english:family["english"]);
  57.  
  58.  script_dependencies("ssh_get_info.nasl");
  59.  
  60.  script_require_keys("Host/RedHat/rpm-list");
  61.  exit(0);
  62. }
  63.  
  64. include("rpm.inc");
  65. if ( rpm_check( reference:"ImageMagick-5.3.8-5", release:"RHEL2.1") )
  66. {
  67.  security_hole(0);
  68.  exit(0);
  69. }
  70. if ( rpm_check( reference:"ImageMagick-c++-5.3.8-5", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75. if ( rpm_check( reference:"ImageMagick-c++-devel-5.3.8-5", release:"RHEL2.1") )
  76. {
  77.  security_hole(0);
  78.  exit(0);
  79. }
  80. if ( rpm_check( reference:"ImageMagick-devel-5.3.8-5", release:"RHEL2.1") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85. if ( rpm_check( reference:"ImageMagick-perl-5.3.8-5", release:"RHEL2.1") )
  86. {
  87.  security_hole(0);
  88.  exit(0);
  89. }
  90.  
  91. if ( rpm_exists(rpm:"ImageMagick-", release:"RHEL2.1") )
  92. {
  93.  set_kb_item(name:"CAN-2003-0455", value:TRUE);
  94.  set_kb_item(name:"CAN-2004-0827", value:TRUE);
  95. }
  96.  
  97. set_kb_item(name:"RHSA-2004-494", value:TRUE);
  98.